Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | import Backbone from 'backbone'; |
||
35 | initialize: function (options) { |
||
36 | this.formatter = options.formatter; |
||
37 | this.column = options.column; |
||
38 | if (!(this.column instanceof Column)) { |
||
39 | this.column = new Column(this.column); |
||
40 | } |
||
41 | |||
42 | this.listenTo(this.model, "backgrid:editing", this.postRender); |
||
43 | }, |
||
44 | |||
61 |